home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 7
/
BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso
/
Files
/
Prog
/
T
/
TC Prog Guide.cpt
/
picture ƒ
/
backdrop.c
< prev
next >
Wrap
Text File
|
1990-11-07
|
747b
|
26 lines
/*
* FILE: backdrop.c
* AUTHOR: R. Gonzalez
* CREATED: November 7, 1990
*
* methods for backdrop projector class, which blacks out screen.
*/
# include "backdrop.h"
/******************************************************************
* Set projection frame to fill screen, then call inherited.
* Can't do this in init() since we don't know screen_ptr yet
* at that point.
******************************************************************/
void Backdrop_Projector::set_screen(Screen* screen_ptr_val)
{
set_projection_frame(screen_ptr_val->normalized_frame->x,
screen_ptr_val->normalized_frame->y,
screen_ptr_val->normalized_frame->width,
screen_ptr_val->normalized_frame->height);
Projector::set_screen(screen_ptr_val);
}